Use "const gchar*" in new tooltip api. Pointed out by Torsten Schoenfeld.
authorMatthias Clasen <matthiasc@src.gnome.org>
Sun, 18 Jan 2009 15:57:06 +0000 (15:57 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sun, 18 Jan 2009 15:57:06 +0000 (15:57 +0000)
       * gtk/gtkstatusicon.h: Use "const gchar*" in new tooltip api.
        Pointed out by Torsten Schoenfeld.

svn path=/trunk/; revision=22133

ChangeLog
gtk/gtkstatusicon.h

index 96244e7695fd12138ff2b07b0fe4b4f11febe206..260b2b7e8dec97b402196b773867c960b9db68cd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2009-01-18  Matthias Clasen  <mclasen@redhat.com>
+
+       Bug 567655 – gtk_status_icon_set_tooltip_text and 
+       gtk_status_icon_set_tooltip_markup should use gchar*
+
+       * gtk/gtkstatusicon.h: Use "const gchar*" in new tooltip api.
+       Pointed out by Torsten Schoenfeld.
+
 2009-01-18  Matthias Clasen  <mclasen@redhat.com>
 
        * demos/gtk-demo/search_entry.c: End the search if the window
index 6d276b9defa78708fe1d838102c8027bdf9a355a..19db689a303b7b7aac9db4c52a83c61888f12bf1 100755 (executable)
@@ -117,9 +117,9 @@ void                  gtk_status_icon_set_tooltip        (GtkStatusIcon      *st
 void                  gtk_status_icon_set_has_tooltip    (GtkStatusIcon      *status_icon,
                                                           gboolean            has_tooltip);
 void                  gtk_status_icon_set_tooltip_text   (GtkStatusIcon      *status_icon,
-                                                          const char         *text);
+                                                          const gchar        *text);
 void                  gtk_status_icon_set_tooltip_markup (GtkStatusIcon      *status_icon,
-                                                          const char         *markup);
+                                                          const gchar        *markup);
 void                  gtk_status_icon_set_visible        (GtkStatusIcon      *status_icon,
                                                          gboolean            visible);
 gboolean              gtk_status_icon_get_visible        (GtkStatusIcon      *status_icon);